home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / addzip / utility.frm < prev   
Text File  |  1996-05-16  |  2KB  |  76 lines

  1. VERSION 2.00
  2. Begin Form frmUtility 
  3.    BackColor       =   &H00C0C0C0&
  4.    BorderStyle     =   1  'Fixed Single
  5.    ClientHeight    =   975
  6.    ClientLeft      =   2490
  7.    ClientTop       =   3615
  8.    ClientWidth     =   5175
  9.    Height          =   1380
  10.    Left            =   2430
  11.    LinkTopic       =   "Form1"
  12.    MaxButton       =   0   'False
  13.    MinButton       =   0   'False
  14.    ScaleHeight     =   975
  15.    ScaleWidth      =   5175
  16.    Top             =   3270
  17.    Width           =   5295
  18.    Begin CommandButton cmdCancel 
  19.       Cancel          =   -1  'True
  20.       Caption         =   "Cancel"
  21.       Height          =   375
  22.       Left            =   2520
  23.       TabIndex        =   1
  24.       Top             =   480
  25.       Width           =   1215
  26.    End
  27.    Begin CommandButton cmdOK 
  28.       Caption         =   "OK"
  29.       Default         =   -1  'True
  30.       Height          =   375
  31.       Left            =   3840
  32.       TabIndex        =   2
  33.       Top             =   480
  34.       Width           =   1215
  35.    End
  36.    Begin TextBox txtInput 
  37.       Height          =   285
  38.       Left            =   120
  39.       TabIndex        =   0
  40.       Text            =   "Text1"
  41.       Top             =   120
  42.       Width           =   4935
  43.    End
  44. End
  45. Option Explicit
  46.  
  47. Sub cmdCancel_Click ()
  48.   g_cTemp = ""
  49.   Unload Me
  50. End Sub
  51.  
  52. Sub cmdOK_Click ()
  53.   Const ATTR_DIRECTORY = 16 ' Declare form constant.
  54.   
  55.   g_cTemp = txtInput.Text
  56.   If ((InStr(frmUtility.Caption, "directory") > 0) And (Dir(g_cTemp, ATTR_DIRECTORY) = "")) Then
  57.     MsgBox g_cTemp & " is not a directory!", 16, "Error"
  58.     Exit Sub
  59.   End If
  60.   Unload Me
  61. End Sub
  62.  
  63. Sub Form_Load ()
  64.   Dim I As Integer
  65.   If (frmQuickZIP.mnuOptionsOnTop.Checked = True) Then
  66.     I = SetWindowPos(Me.hWnd, HWND_TOPMOST, 0, 0, 0, 0, FLAGS)
  67.   End If
  68. End Sub
  69.  
  70. Sub txtInput_GotFocus ()
  71.     ' highlight text when control first gets focus
  72.     txtInput.SelStart = 0          ' Start selection at beginning.
  73.     txtInput.SelLength = Len(txtInput.Text)  ' Length of text in Text1.
  74. End Sub
  75.  
  76.